Microsoft® Silverlight® 4 Step by Step by Laurence Moroney

Microsoft® Silverlight® 4 Step by Step by Laurence Moroney

Author:Laurence Moroney [Laurence Moroney]
Language: eng
Format: epub
Tags: COMPUTERS / Desktop Applications / General
ISBN: 9780735647541
Published: 2010-06-18T00:00:00+00:00


Here’s the full button1_Click event handler:

private void button1_Click(object sender, RoutedEventArgs e) { using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication()) { using(StreamWriter sw = new StreamWriter( store.OpenFile("MyStore.Text", FileMode.OpenOrCreate, FileAccess Write))) { sw.WriteLine(textBox1.Text); } } }

Now you can implement the code for button2. In this event handler, you want to read back whatever was written into isolated storage and write it into the TextBlock. The code for this click handler is very similar to what you just wrote, except this time the application is reading.

private void button2_Click(object sender, RoutedEventArgs e) { using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication()) { using(StreamReader sr = new StreamReader( store.OpenFile("MyStore.Text", FileMode.Open, FileAccess.Read))) { textBlock1.Text = sr.ReadToEnd(); } } }



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Popular ebooks
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(56018)
What's Done in Darkness by Kayla Perrin(26591)
The Fifty Shades Trilogy & Grey by E L James(19078)
Shot Through the Heart: DI Grace Fisher 2 by Isabelle Grey(19057)
Shot Through the Heart by Mercy Celeste(18935)
Wolf & Parchment: New Theory Spice & Wolf, Vol. 10 by Isuna Hasekura and Jyuu Ayakura(17110)
Python GUI Applications using PyQt5 : The hands-on guide to build apps with Python by Verdugo Leire(16989)
Peren F. Statistics for Business and Economics...Essential Formulas 3ed 2025 by Unknown(16873)
Wolf & Parchment: New Theory Spice & Wolf, Vol. 03 by Isuna Hasekura and Jyuu Ayakura & Jyuu Ayakura(16823)
Wolf & Parchment: New Theory Spice & Wolf, Vol. 01 by Isuna Hasekura and Jyuu Ayakura & Jyuu Ayakura(16444)
The Subtle Art of Not Giving a F*ck by Mark Manson(14352)
The 3rd Cycle of the Betrayed Series Collection: Extremely Controversial Historical Thrillers (Betrayed Series Boxed set) by McCray Carolyn(14128)
Stepbrother Stories 2 - 21 Taboo Story Collection (Brother Sister Stepbrother Stepsister Taboo Pseudo Incest Family Virgin Creampie Pregnant Forced Pregnancy Breeding) by Roxi Harding(13622)
Scorched Earth by Nick Kyme(12767)
Drei Generationen auf dem Jakobsweg by Stein Pia(10964)
Suna by Ziefle Pia(10888)
Scythe by Neal Shusterman(10334)
International Relations from the Global South; Worlds of Difference; First Edition by Arlene B. Tickner & Karen Smith(9520)
Successful Proposal Strategies for Small Businesses: Using Knowledge Management ot Win Govenment, Private Sector, and International Contracts 3rd Edition by Robert Frey(9366)
The Ultimate Python Exercise Book: 700 Practical Exercises for Beginners with Quiz Questions by Copy(9310)